home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / CHIPCD_02_2002.iso / Internet / Macromedia ColdFusion Server 5 / coldfusion-50-win-us.exe / data1.cab / Program_Files / cfremote.ini < prev   
Encoding:
Text File  |  2001-06-13  |  2.8 KB  |  105 lines

  1. ;
  2. ; Sample INI file for ColdFusion Remoting.
  3. ;
  4. ; Place this file in the root directory of your CF installation.
  5. ; It must be named "cfremote.ini".
  6. ;
  7. ; !IMPORTANT! * All values (the strings on the right hand side of 
  8. ;               the equals sign) must be quoted using double 
  9. ;               quotes. 
  10. ;             * All info is case insensitive..
  11. ;             * Lines beginning with a semicolon are treated as 
  12. ;               comments and are ignored.
  13. ;
  14.  
  15. ; Use this to turn on/off the remoting capability.
  16. ;
  17. ; Valid values: Yes, No.
  18. ;
  19. REMOTING = "NO"
  20.  
  21.  
  22. ; Use this to specify the IP address of the remote computer running 
  23. ; the CF Application Server.
  24. ;
  25. ; Valid values: a valid IP address, eg: 139.56.205.102.
  26. ;
  27. IP = "205.181.21.61"
  28.  
  29.  
  30. ; Use this to specify the port on that computer on which the remote 
  31. ; CF Network Listener Module is listening.
  32. ;
  33. ; Valid values: a valid port number (integer).
  34. ;
  35. PORT = "1234"
  36.  
  37. ; Use this to specify the document root of the local web server
  38. ; Filenames with this path prefix will be translated in to paths
  39. ; on the remote system using REMOTEPATH
  40. ;
  41. ; Valid values: a pathname. eg: /usr/local/apache/htdocs
  42. ;
  43. ;LOCALPATH = "/usr/local/apache/htdocs"
  44.  
  45. ; Use this to specify the document root of the remote ColdFusion server
  46. ; This path prefix will be substituted for LOCALPATH in filenames
  47. ; before they are passed on to the ColdFusion Net Listener
  48. ;
  49. ; Valid values: a pathname. eg: c:\Inetpub\WWWRoot
  50. ;
  51. ;REMOTEPATH = "c:\Inetpub\WWWRoot"
  52.  
  53. ; Use this to specify that the data sent between the machine running
  54. ; the web server and the machine running the CF Application Server
  55. ; be encrypted.
  56. ;
  57. ; Valid values: Yes, No.
  58. ;
  59. ENCRYPTION = "YES"
  60.  
  61.  
  62. ; Use this to specify the key used to encrypt the data.
  63. ;
  64. ; Valid values: any string of up to 127 ASCII chars.
  65. ;
  66. KEY = "dogface"
  67.  
  68.  
  69. ; Use this to have this INI file be deleted after it is read at 
  70. ; startup. (This is a security feature as it keeps your key from
  71. ; being read by others.)
  72. ;
  73. ; Valid values: Yes, No.
  74. ;
  75. DELETE = "NO"
  76.  
  77.  
  78. ; Use this to write a message to the CF "webserver.log" confirming that
  79. ; remoting is active and what startup parameters (except the encryption
  80. ; key) were used.
  81. ;
  82. ; Valid values: Yes, No.
  83. ;
  84. MESSAGE = "YES"
  85.  
  86.  
  87. ; Use this to enable v4.n logging format in place of the v5.0 format
  88. ;
  89. ; Valid values: Yes, No.
  90. ;
  91. LOGFORMAT_4X_STYLE = "NO"
  92.  
  93.  
  94. ; Use this to redirect error processing to a custom page (location).
  95. ;
  96. ; The supported keys are : 
  97. ;
  98. ;    -----------------------------------------------------------------
  99. ;        KEY                VALUE            DESCRIPTION
  100. ;    -----------------------------------------------------------------
  101. ;    ERROR_PIPE            url            Use for stub(webserver)/CFAS 
  102. ;                                    communication failures
  103. ;
  104. ;    ------------------------------------------------------------------
  105. ;